ApiBluePrint.constructor   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
1
import path from 'path';
2
import Base from  './TemplateReporter';
3
4
const templatePath = path.join(__dirname, '../../templates/reporters/api-blueprint.md');
5
6
export default class ApiBluePrint extends Base {
7
    constructor(file) {
8
        super(file, { path: templatePath });
9
    }
10
}
11